REM - Terminal - simple terminal REM - emulation program which demonstrates REM - how to access the Amiga RS-232 REM - port from BASIC OPEN "com1:9600,n,8,1" AS 1 WHILE 1 WHILE LOC(1)<>0 PRINT INPUT$(1,1); WEND i$=INKEY$ IF i$<>"" THEN PRINT #1,i$; WEND